'
'
' ######################
' ##### TextLine #####
' ######################
'
FUNCTION TextLine ()
$XuiTextLine = 10
'
GetDisplayGrid ( @label )
'
' create window with XuiTextLine grid
'
XuiCreateWindow (@grid, @"XuiTextLine", 100, 256, 256, 128, 0, "")
XuiSendStringMessage ( grid, @"SetCallback", grid, &XuiQueueCallbacks(), -1,
-1, $XuiTextLine, -1)
XuiSendStringMessage ( grid, @"SetGridName", 0, 0, 0, 0, 0,
@"TextLine")
XuiSendStringMessage ( grid, @"SetTextString", 0, 0, 0, 0, 0,
@"XuiTextLine")
XuiSendStringMessage ( grid, @"DisplayWindow", 0, 0, 0, 0, 0, 0)
'
' convenience function message loop
'
DO
XgrProcessMessages (1)
DO WHILE XuiGetNextCallback (@grid, @message$, @v0, @v1, @v2, @v3, @kid, @r1$)
GOSUB Callback
LOOP
LOOP
RETURN
'
' callback
'
SUB Callback
win = kid >> 16
kid = kid AND 0xFF
SELECT CASE message$
CASE "CloseWindow" : QUIT (0)
CASE "Selection" : GOSUB Selection
CASE ELSE : DisplayCallback (grid, @message$, v0, v1,
v2, v3, kid, @r1$)
END SELECT
END SUB
'
' Selection message
'
SUB Selection
XuiSendStringMessage (grid, @"GetTextString", 0, 0, 0, 0, 0, @a$)
text$ = ""
text$ = text$ + "XuiTextLine"
text$ = text$ + "\n grid = " + HEX$ (grid,8)
text$ = text$ + "\n message = " + message$
text$ = text$ + "\n state = " + HEX$ (v0,8) + " : \"" + a$ +
"\""
text$ = text$ + "\n v1 = " + HEX$ (v1,8)
text$ = text$ + "\n v2 = " + HEX$ (v2,8)
text$ = text$ + "\n v3 = " + HEX$ (v3,8)
text$ = text$ + "\n kid = " + HEX$ (kid,8)
text$ = text$ + "\n r1$ = " + r1$
XuiSendStringMessage (label, @"SetTextString", 0, 0, 0, 0, 0, @text$) ' set
message text
XuiSendStringMessage (label, @"Redraw", 0, 0, 0, 0, 0, 0) ' redraw label
END SUB
END FUNCTION